All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.Pasteboard

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Pasteboard

public class Pasteboard
extends NativeObject
This class wraps the Objective-C class NSPasteboard.


Variable Index

 o ColorPboardType
 o DragPboard
 o FileContentsPboardType
 o FilenamesPboardType
 o FindPboard
 o FontPboard
 o FontPboardType
 o GeneralPboard
 o PostScriptPboardType
 o RTFPDPboardType
 o RTFPPboardType
 o RulerPboard
 o RulerPboardType
 o StringPboardType
 o TabularTextPboardType
 o TIFFPboardType

Constructor Index

 o Pasteboard()
This default constructor is equivalent to Objective-C's [[NSPasteboard alloc] init].
 o Pasteboard(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o addTypes(Array, Object)
A wrapper for the - addTypes:owner: Objective-C instance method.
 o availableTypeFromArray(Array)
A wrapper for the - availableTypeFromArray: Objective-C instance method.
 o changeCount()
A wrapper for the - changeCount Objective-C instance method.
 o dataForType(String)
A wrapper for the - dataForType: Objective-C instance method.
 o declareTypes(Array, Object)
A wrapper for the - declareTypes:owner: Objective-C instance method.
 o generalPasteboard()
A wrapper for the + generalPasteboard Objective-C class method.
 o name()
A wrapper for the - name Objective-C instance method.
 o pasteboardByFilteringData(Data, String)
A wrapper for the + pasteboardByFilteringData:ofType: Objective-C class method.
 o pasteboardByFilteringFile(String)
A wrapper for the + pasteboardByFilteringFile: Objective-C class method.
 o pasteboardByFilteringTypesInPasteboard(Pasteboard)
A wrapper for the + pasteboardByFilteringTypesInPasteboard: Objective-C class method.
 o pasteboardWithName(String)
A wrapper for the + pasteboardWithName: Objective-C class method.
 o pasteboardWithUniqueName()
A wrapper for the + pasteboardWithUniqueName Objective-C class method.
 o propertyListForType(String)
A wrapper for the - propertyListForType: Objective-C instance method.
 o readFileContentsTypeToFile(String, String)
A wrapper for the - readFileContentsType:toFile: Objective-C instance method.
 o readFileWrapper()
A wrapper for the - readFileWrapper Objective-C instance method.
 o releaseGlobally()
A wrapper for the - releaseGlobally Objective-C instance method.
 o setDataForType(Data, String)
A wrapper for the - setData:forType: Objective-C instance method.
 o setPropertyListForType(Object, String)
A wrapper for the - setPropertyList:forType: Objective-C instance method.
 o setStringForType(String, String)
A wrapper for the - setString:forType: Objective-C instance method.
 o stringForType(String)
A wrapper for the - stringForType: Objective-C instance method.
 o types()
A wrapper for the - types Objective-C instance method.
 o typesFilterableTo(String)
A wrapper for the + typesFilterableTo: Objective-C class method.
 o writeFileContents(String)
A wrapper for the - writeFileContents: Objective-C instance method.
 o writeFileWrapper(FileWrapper)
A wrapper for the - writeFileWrapper: Objective-C instance method.

Variables

 o ColorPboardType
 public static final String ColorPboardType
 o FileContentsPboardType
 public static final String FileContentsPboardType
 o FilenamesPboardType
 public static final String FilenamesPboardType
 o FontPboardType
 public static final String FontPboardType
 o PostScriptPboardType
 public static final String PostScriptPboardType
 o RulerPboardType
 public static final String RulerPboardType
 o RTFPPboardType
 public static final String RTFPPboardType
 o RTFPDPboardType
 public static final String RTFPDPboardType
 o StringPboardType
 public static final String StringPboardType
 o TabularTextPboardType
 public static final String TabularTextPboardType
 o TIFFPboardType
 public static final String TIFFPboardType
 o GeneralPboard
 public static final String GeneralPboard
 o FontPboard
 public static final String FontPboard
 o RulerPboard
 public static final String RulerPboard
 o FindPboard
 public static final String FindPboard
 o DragPboard
 public static final String DragPboard

Constructors

 o Pasteboard
 protected Pasteboard(boolean shouldAllocate,
                      int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o Pasteboard
 public Pasteboard()
This default constructor is equivalent to Objective-C's [[NSPasteboard alloc] init].

Methods

 o generalPasteboard
 public static native Pasteboard generalPasteboard()
A wrapper for the + generalPasteboard Objective-C class method.

 o pasteboardWithName
 public static native Pasteboard pasteboardWithName(String name)
A wrapper for the + pasteboardWithName: Objective-C class method.

 o pasteboardWithUniqueName
 public static native Pasteboard pasteboardWithUniqueName()
A wrapper for the + pasteboardWithUniqueName Objective-C class method.

 o typesFilterableTo
 public static native Array typesFilterableTo(String type)
A wrapper for the + typesFilterableTo: Objective-C class method.

 o pasteboardByFilteringFile
 public static native Pasteboard pasteboardByFilteringFile(String filename)
A wrapper for the + pasteboardByFilteringFile: Objective-C class method.

 o pasteboardByFilteringData
 public static native Pasteboard pasteboardByFilteringData(Data data,
                                                           String type)
A wrapper for the + pasteboardByFilteringData:ofType: Objective-C class method.

 o pasteboardByFilteringTypesInPasteboard
 public static native Pasteboard pasteboardByFilteringTypesInPasteboard(Pasteboard pboard)
A wrapper for the + pasteboardByFilteringTypesInPasteboard: Objective-C class method.

 o name
 public native String name()
A wrapper for the - name Objective-C instance method.

 o releaseGlobally
 public native void releaseGlobally()
A wrapper for the - releaseGlobally Objective-C instance method.

 o declareTypes
 public native int declareTypes(Array newTypes,
                                Object newOwner)
A wrapper for the - declareTypes:owner: Objective-C instance method.

 o addTypes
 public native int addTypes(Array newTypes,
                            Object newOwner)
A wrapper for the - addTypes:owner: Objective-C instance method.

 o changeCount
 public native int changeCount()
A wrapper for the - changeCount Objective-C instance method.

 o types
 public native Array types()
A wrapper for the - types Objective-C instance method.

 o availableTypeFromArray
 public native String availableTypeFromArray(Array types)
A wrapper for the - availableTypeFromArray: Objective-C instance method.

 o setDataForType
 public native boolean setDataForType(Data data,
                                      String dataType)
A wrapper for the - setData:forType: Objective-C instance method.

 o dataForType
 public native Data dataForType(String dataType)
A wrapper for the - dataForType: Objective-C instance method.

 o setPropertyListForType
 public native boolean setPropertyListForType(Object plist,
                                              String dataType)
A wrapper for the - setPropertyList:forType: Objective-C instance method.

 o propertyListForType
 public native Object propertyListForType(String dataType)
A wrapper for the - propertyListForType: Objective-C instance method.

 o setStringForType
 public native boolean setStringForType(String string,
                                        String dataType)
A wrapper for the - setString:forType: Objective-C instance method.

 o stringForType
 public native String stringForType(String dataType)
A wrapper for the - stringForType: Objective-C instance method.

 o writeFileContents
 public native boolean writeFileContents(String filename)
A wrapper for the - writeFileContents: Objective-C instance method.

 o readFileContentsTypeToFile
 public native String readFileContentsTypeToFile(String type,
                                                 String filename)
A wrapper for the - readFileContentsType:toFile: Objective-C instance method.

 o writeFileWrapper
 public native boolean writeFileWrapper(FileWrapper wrapper)
A wrapper for the - writeFileWrapper: Objective-C instance method.

 o readFileWrapper
 public native FileWrapper readFileWrapper()
A wrapper for the - readFileWrapper Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index